home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 2.iso
/
STUTTGART
/
FROMUTS
/
UNIXLIB37B
/
src
/
unix
/
c
/
link
< prev
next >
Wrap
Text File
|
1991-06-18
|
372b
|
24 lines
static char sccs_id[] = "@(#) link.c 2.0 "__DATE__" HJR";
/* link.c (c) Copyright 1990 H.Rogers */
#include <errno.h>
#include "sys/unix.h"
#include "sys/os.h"
int link(register char *ofile,register char *nfile)
{
os_error *e;
ofile = __uname(ofile,0);
nfile = __uname(nfile,1);
if (e = os_fsctrl(25,ofile,nfile,0))
{
__seterr(e);
return(-1);
}
return(0);
}